home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / odbcall.zip / PARAMEDT.DFM / PARAMEDT.txt
Text File  |  1995-12-22  |  4KB  |  174 lines

  1. object frmParamEditor: TfrmParamEditor
  2.   Left = 200
  3.   Top = 99
  4.   Width = 384
  5.   Height = 218
  6.   Caption = 'ODBC Parameter Editor'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   OnResize = FormResize
  15.   TextHeight = 16
  16.   object Label1: TLabel
  17.     Left = 147
  18.     Top = 13
  19.     Width = 42
  20.     Height = 16
  21.     Caption = 'Name:'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 153
  25.     Top = 40
  26.     Width = 36
  27.     Height = 16
  28.     Caption = 'Type:'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 149
  32.     Top = 122
  33.     Width = 40
  34.     Height = 16
  35.     Caption = 'Value:'
  36.   end
  37.   object Label4: TLabel
  38.     Left = 141
  39.     Top = 94
  40.     Width = 48
  41.     Height = 16
  42.     Caption = 'Length:'
  43.   end
  44.   object Label5: TLabel
  45.     Left = 258
  46.     Top = 94
  47.     Width = 40
  48.     Height = 16
  49.     Caption = 'Scale:'
  50.   end
  51.   object Label6: TLabel
  52.     Left = 167
  53.     Top = 67
  54.     Width = 22
  55.     Height = 16
  56.     Caption = 'I/O:'
  57.   end
  58.   object Params: TListBox
  59.     Left = 0
  60.     Top = 0
  61.     Width = 133
  62.     Height = 150
  63.     Align = alLeft
  64.     ItemHeight = 16
  65.     TabOrder = 0
  66.     OnClick = ParamsClick
  67.   end
  68.   object Panel1: TPanel
  69.     Left = 0
  70.     Top = 150
  71.     Width = 376
  72.     Height = 41
  73.     Align = alBottom
  74.     TabOrder = 7
  75.     object btnOk: TBitBtn
  76.       Left = 98
  77.       Top = 3
  78.       Width = 89
  79.       Height = 33
  80.       TabOrder = 0
  81.       OnClick = btnOkClick
  82.       Kind = bkOK
  83.     end
  84.     object btnCancel: TBitBtn
  85.       Left = 192
  86.       Top = 3
  87.       Width = 89
  88.       Height = 33
  89.       TabOrder = 1
  90.       Kind = bkCancel
  91.     end
  92.     object BitBtn1: TBitBtn
  93.       Left = 2
  94.       Top = 3
  95.       Width = 89
  96.       Height = 33
  97.       Caption = 'Update'
  98.       TabOrder = 2
  99.       OnClick = BitBtn1Click
  100.       Glyph.Data = {
  101.         76010000424D7601000000000000760000002800000020000000100000000100
  102.         04000000000000010000130B0000130B00000000000000000000000000000000
  103.         800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
  104.         FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
  105.         333333333333333FF3FF3333333333CC30003333333333773777333333333C33
  106.         3000333FF33337F33777339933333C3333333377F33337F3333F339933333C33
  107.         33003377333337F33377333333333C333300333F333337F33377339333333C33
  108.         3333337FF3333733333F33993333C33333003377FF33733333773339933C3333
  109.         330033377FF73F33337733339933C33333333FF377F373F3333F993399333C33
  110.         330077F377F337F33377993399333C33330077FF773337F33377399993333C33
  111.         33333777733337F333FF333333333C33300033333333373FF7773333333333CC
  112.         3000333333333377377733333333333333333333333333333333}
  113.       NumGlyphs = 2
  114.     end
  115.   end
  116.   object ParamName: TEdit
  117.     Left = 196
  118.     Top = 9
  119.     Width = 168
  120.     Height = 24
  121.     TabOrder = 1
  122.     OnChange = ParamNameChange
  123.   end
  124.   object ParamType: TComboBox
  125.     Left = 196
  126.     Top = 36
  127.     Width = 168
  128.     Height = 24
  129.     ItemHeight = 16
  130.     TabOrder = 2
  131.     OnChange = ParamTypeChange
  132.   end
  133.   object ParamValue: TEdit
  134.     Left = 197
  135.     Top = 118
  136.     Width = 168
  137.     Height = 24
  138.     TabOrder = 6
  139.     OnChange = ParamValueChange
  140.     OnExit = ParamValueExit
  141.   end
  142.   object DataLen: TEdit
  143.     Left = 196
  144.     Top = 90
  145.     Width = 53
  146.     Height = 24
  147.     TabOrder = 4
  148.     OnChange = DataLenChange
  149.   end
  150.   object Scale: TEdit
  151.     Left = 304
  152.     Top = 90
  153.     Width = 60
  154.     Height = 24
  155.     TabOrder = 5
  156.     OnChange = ScaleChange
  157.   end
  158.   object IOType: TComboBox
  159.     Left = 196
  160.     Top = 63
  161.     Width = 168
  162.     Height = 24
  163.     ItemHeight = 16
  164.     Items.Strings = (
  165.       'Input'
  166.       'Input/Output'
  167.       'Result'
  168.       'Output'
  169.       'Return Value')
  170.     TabOrder = 3
  171.     OnChange = IOTypeChange
  172.   end
  173. end
  174.